home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 51 / Amiga Format CD51 (2000-03-10)(Future Publishing)(GB)[!][issue 2000-04].iso / -in_the_mag- / workbench / term_4.8 / extras / source / gtlayout-source.lha / gtlayout_data.c < prev    next >
C/C++ Source or Header  |  1997-07-30  |  860b  |  42 lines

  1. /*
  2. **    GadTools layout toolkit
  3. **
  4. **    Copyright © 1993-1997 by Olaf `Olsen' Barthel
  5. **        Freely distributable.
  6. **
  7. **    :ts=8
  8. */
  9.  
  10. #ifndef _GTLAYOUT_GLOBAL_H
  11. #include "gtlayout_global.h"
  12. #endif
  13.  
  14. #ifdef LINK_LIB
  15. extern struct ExecBase * SysBase;
  16. #else
  17. struct ExecBase    * SysBase;
  18. #endif    // LINK_LIB
  19.  
  20. struct Library *    IntuitionBase;
  21. struct GfxBase *    GfxBase;
  22. struct Library *    UtilityBase;
  23. struct Library *    GadToolsBase;
  24. struct Library *    KeymapBase;
  25. struct LocaleBase *    LocaleBase;
  26. struct Locale *        LTP_Locale;
  27. struct SignalSemaphore    LTP_LockSemaphore;
  28. struct MinList        LTP_LockList;
  29. struct IClass *        LTP_ImageClass;
  30. struct IClass *        LTP_LevelClass;
  31. struct IClass *        LTP_PopupClass;
  32. struct IClass *        LTP_TabClass;
  33. struct MinList        LTP_EmptyList;
  34.  
  35. #ifdef DO_PICKSHORTCUTS
  36. UBYTE *            LTP_Keys[2];
  37. struct SignalSemaphore    LTP_KeySemaphore;
  38. #endif
  39.  
  40. BOOLEAN            V39;
  41. BOOLEAN            V40;
  42.